'use client'; import { useState } from 'react'; import { ChannelDetail } from '@/types/channel'; import ChatSidebar from './ChatSidebar'; import DonationModal from './DonationModal'; import Link from 'next/link'; import './style.scss'; type Props = { channel: ChannelDetail; }; export default function WatchView({ channel }: Props) { const [showDonation, setShowDonation] = useState(false); const embedUrl = channel.videoId ? `https://www.youtube.com/embed/${channel.videoId}?autoplay=1&mute=1` : null; return (
현재 방송 중이 아닙니다
채널 페이지로 이동